home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 May / PC Answers CD-ROM 7 (Future Publishing) (May 1995).iso / vbits / code / shaw / vbits16 / newdialo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-13  |  648 b   |  29 lines

  1. // newdialo.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CNewDialog dialog
  6.  
  7. class CNewDialog : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CNewDialog(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CNewDialog)
  15.     enum { IDD = IDD_NewDialog };
  16.         // NOTE: the ClassWizard will add data members here
  17.     //}}AFX_DATA
  18.  
  19. // Implementation
  20. protected:
  21.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  22.  
  23.     // Generated message map functions
  24.     //{{AFX_MSG(CNewDialog)
  25.     afx_msg void OnSayHello();
  26.     //}}AFX_MSG
  27.     DECLARE_MESSAGE_MAP()
  28. };
  29.